home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / bailer.swf / scripts / DefineSprite_14 / frame_1 / DoAction.as
Encoding:
Text File  |  2013-04-24  |  213 b   |  10 lines

  1. this.onEnterFrame = function()
  2. {
  3.    nParcent = _root.getBytesLoaded() / _root.getBytesTotal() * 100;
  4.    _xscale = _xscale + (nParcent - _xscale) / 5;
  5.    if(_xscale >= 99)
  6.    {
  7.       _root.play();
  8.    }
  9. };
  10.